FontPropertyStrikeout
Type
operator
Summary
The strikeout setting of a font.
Syntax
the strikeout of <mFont>
Description
The strikeout flag of mFont is a boolean. If true, then text drawn with mFont will be stricken-out.
Parameters
Name | Type | Description |
---|---|---|
mFont | An expression which evaluates to a font. |
Examples
// Create a font
variable tFont as Font
put font "Arial" at size 20 into tFont
// Set the font to strikeout
set the strikeout of tFont to true